home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20021006-20030409 / 000017_fdc@columbia.edu_Wed Oct 16 17:34:34 EDT 2002.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  59 lines

  1. Article: 13780 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Problems transferring over ppp connection
  6. Date: 16 Oct 2002 17:34:26 -0400
  7. Organization: Columbia University
  8. Lines: 42
  9. Message-ID: <aokm12$7lv$1@watsol.cc.columbia.edu>
  10. References: <1034801647.495773@irys.nyx.net>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1034804068 10799 128.59.39.139 (16 Oct 2002 21:34:28 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 16 Oct 2002 21:34:28 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13780
  16.  
  17. In article <1034801647.495773@irys.nyx.net>,
  18. Henry van Cleef <hvanclee@nyx.net> wrote:
  19. : I have an account where I can connect either to a shell login or
  20. : through ppp and TCP/IP.
  21. : I have no problem uploading and downloading files through the regular
  22. : shell kermit protocol.  But when I try to upload or download over a
  23. : telnet or ssh (have tried both) connection, the transmission starts
  24. : ok, then blocks and gets tied in knots---it will finally complete, but
  25. : only after wall-to-wall errors, and at a very slow rate.
  26. : The TCP/IP connection uses STREAMING, and I suspect that my problem
  27. : lies in the fact that it's much faster than my modem setup can handle.
  28. : What's the proper way to deal with this.
  29. :
  30. The culprit is most likely a lack of effective flow control.
  31.  
  32. : Local modem is a sportster V90, locked down to 38.4 max, as the
  33. : telephone line will only connect at 26400---modem-local speed is 
  34. : 115200.  
  35. : Remote is a Portmaster3/Radius setup.  
  36. : Note that this version of Solaris comes with the later PPP (similar to
  37. : Linux), not the old asppp.  
  38. : ppp options are:
  39. : 115200                  # default baud rate for this port
  40. : crtscts
  41. :
  42. Presumably "crtscts" sets hardware flow in the PPP driver.  But how do we
  43. know it is also being set in the modem?  When Kermit does the dialing, it
  44. proactively sets the modem for hardware flow control (unless you told it
  45. not to).  When PPP does the dialing, who knows.  Maybe the modem's powerup
  46. or reset state does not include RTS/CTS.  Can you watch the "chat script"
  47. between the PPP driver and your modem?  Compare it with Kermit dialing
  48. with "set dial display on".
  49.  
  50. Do you call the same number for shell login and PPP login?  If not, maybe
  51. there is also a problem on remote end between the answering modem and the
  52. terminal server.  If it IS the same number, the problem is almost certainly
  53. between the PPP driver, the serial-port driver, and the calling modem.
  54.  
  55. - Frank
  56.